extern global_options global_opts;
extern const char gpsbabel_version[];
+extern time_t gpsbabel_now; /* gpsbabel startup-time; initialized in main.c with time() */
+extern time_t gpsbabel_time; /* gpsbabel startup-time; initialized in main.c with current_time(), ! ZERO within testo ! */
/* Short or Long XML Times */
#define XML_SHORT_TIME 1
global_options global_opts;
const char gpsbabel_version[] = VERSION;
-
+time_t gpsbabel_now; /* gpsbabel startup-time; initialized in main.c with time() */
+time_t gpsbabel_time; /* gpsbabel startup-time; initialized in main.c with current_time(), ! ZERO within testo ! */
global_opts.charset = NULL; /* #ifdef UTF8_SUPPORT */
global_opts.charset_name = NULL; /* #ifdef UTF8_SUPPORT */
+ gpsbabel_now = time(NULL); /* gpsbabel startup-time */
+ gpsbabel_time = current_time(); /* same like gpsbabel_now, but freezed to zero during testo */
+
#ifdef DEBUG_MEM
debug_mem_open();
debug_mem_output( "command line: " );